<style>
* {box-sizing: border-box}

/* WEBSITE HEADER */

#website-header {
	width: 100%;
	height: 52px;
	text-align: center;
	align-items: center;
	color: white;
	background-color: #075eea;
	padding: 15px;
	overflow: hidden;
	position: sticky;
	top: 0;
	z-index: 1000;
}

#heder-logo {
	line-height: 0px;
	font-size: 15px;
	width: 172;
	height: 22;
	border: 0;
	cursor: pointer;
}

#heder-left-btn {
	float: left;
	font-size: 30px;
	color: #a5c8eb;
	display: block;
    width: 40px;
    height: 40px;
    margin: 0.2em;
    background-image: none;
    border-radius: 0%;
    /* border: 2px solid #a5c8eb; */
    opacity: .7;
    box-shadow: none;
	position: absolute;
    left: 0px;
    top: 0px;
	padding-top: 0px;
	cursor: pointer;
}

#heder-right-btn {
	float: right;
	font-size: 30px;
	color: #a5c8eb;
	display: block;
    width: 40px;
    height: 40px;
    margin: 0.2em;
    background-image: none;
    border-radius: 0%;
    /* border: 2px solid #a5c8eb; */
    opacity: .7;
    box-shadow: none;
	position: absolute;
    right: 0px;
    top: 0px;
	padding-top: 0px;
	cursor: pointer;
}

.fa-chevron-circle-left, .fa-circle-user {
	font-size: 30px;
    /* opacity: 0.7; */
    border-radius: 50%;
    border: 1px solid white;
    background-color: white;
    color: #075eea;
}

</style>

